home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 April / EnigmA AMIGA RUN 06 (1996)(G.R. Edizioni)(IT)[!][issue 1996-04][Skylink CD V].iso / earcd / utilgfx / chaospro.lha / chaospro / formula / Formulafile
Text File  |  1995-12-20  |  576b  |  59 lines

  1. CPFR
  2. Mandelbrot
  3. {
  4.    { 0 }
  5.    { T         z*z+pixel }
  6.    { abs(z)<16 }
  7. }
  8.  
  9. Newton_3
  10. {
  11.    { pixel }
  12.    { T  z-(z^3+3)/(3*z^2) }
  13.    { abs(z)<16 }
  14. }
  15.  
  16. Newton_5
  17. {
  18.    { pixel }
  19.    { T z-(z^5+-10)/(5*z^4) }
  20.    { abs(z)<16 }
  21. }
  22.  
  23. Babylon
  24. {
  25.    { 0 }
  26.    { T sin(z)+z+pixel }
  27.    { abs(z)<16 }
  28. }
  29.  
  30. Dragon
  31. {
  32.    { pixel }
  33.    { T cos(z)*z+sin(z)+pixel }
  34.    { abs(z)<16 }
  35. }
  36.  
  37. Multivariant
  38. {
  39.    { pixel }
  40.    { T sin(z*z)^2+cos(pixel) }
  41.    { abs(z)<16 }
  42. }
  43.  
  44. Tunefish
  45. {
  46.    { pixel }
  47.    { T sin(z)^2+pixel }
  48.    { abs(z)<16 }
  49. }
  50.  
  51. CircleSierpinski
  52. {
  53.    { pixel }
  54.    { T 1/z^2+pixel }
  55.    { abs(z)<16 }
  56. }
  57.  
  58.  
  59.